.parallax-divider {
  /* Control the height of the section */
  min-height: 300px;
  
  /* The Parallax Magic */
  background-image: url('../img/portfolio/wambui-ESmWYVFII9I-unsplash.jpg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  
  /* Centering the text */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  
  /* Optional: Darken the image slightly so text is readable */
  position: relative;
}

/* Dark overlay for better text contrast */
.parallax-divider::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.4); 
}

.parallax-content {
  position: relative; /* Brings text above the overlay */
  max-width: 800px;
  color: #ffffff;
  font-size: 1.0rem;
  font-weight: 300;
  line-height: 1.6;
  font-family: 'Montserrat', sans-serif; /* Matching your site font */
}

/* Mobile Fix: Parallax often breaks on phones, so we disable it for smaller screens */
@media only screen and (max-width: 768px) {
  .parallax-divider {
    background-attachment: scroll;
    min-height: 200px;
  }
  .parallax-content {
    font-size: 1.2rem;
  }
}


.site-footer {
    padding: 40px 0;
    margin-top: 60px;
    border-top: 1px solid #eee; /* Subtle separation */
    font-family: 'Inter', sans-serif; /* Use your site's font */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.copyright {
    color: #666;
    font-size: 14px;
}

.scroll-btn {
    background: transparent;
    border: none;
    color: #009669; /* Matching your 'Send Message' button green */
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: transform 0.2s ease;
}

.scroll-btn:hover {
    transform: translateY(-3px);
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .footer-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}